Configure FreeIPA Server
2017/07/20 |
Configure FreeIPA Server to share users' account in your local network.
|
|
[1] | Install FreeIPA. |
[root@dlp ~]# dnf -y install freeipa-server freeipa-server-dns
|
[2] | Setup FreeIPA. |
[root@dlp ~]# ipa-server-install The log file for this installation can be found in /var/log/ipaserver-install.log ============================================================================== This program will set up the FreeIPA Server. This includes: * Configure a stand-alone CA (dogtag) for certificate management * Configure the Network Time Daemon (ntpd) * Create and configure an instance of Directory Server * Create and configure a Kerberos Key Distribution Center (KDC) * Configure Apache (httpd) To accept the default shown in brackets, press the Enter key. WARNING: conflicting time&date synchronization service 'chronyd' will be disabled in favor of ntpd # use integrated DNS or not (thsi example selects no) Do you want to configure integrated DNS (BIND)? [no]: Enter the fully qualified domain name of the computer on which you're setting up server software. Using the form <hostname>.<domainname> Example: master.example.com. # confirm the hostname and Enter Server host name [dlp.srv.world]: The domain name has been determined based on the host name. # confirm the domain name and Enter Please confirm the domain name [srv.world]: The kerberos protocol requires a Realm name to be defined. This is typically the domain name converted to uppercase. # confirm the realm name and Enter Please provide a realm name [SRV.WORLD]: Certain directory server operations require an administrative user. This user is referred to as the Directory Manager and has full access to the Directory for system management tasks and will be added to the instance of directory server created for IPA. The password must be at least 8 characters long. # set Directory Manager's password Directory Manager password: Password (confirm): The IPA server requires an administrative user, named 'admin'. This user is a regular system account used for IPA server administration. # set IPA admin's password IPA admin password: Password (confirm): The IPA Master Server will be configured with: Hostname: dlp.srv.world IP address: 10.0.0.30 Domain name: srv.world Realm name: SRV.WORLD # confirm settings and proceed with [yes] Continue to configure the system with these values? [no]: yes The following operations may take some minutes to complete. Please wait until the prompt is returned. Configuring NTP daemon (ntpd) ... ... ... ============================================================================== Setup complete Next steps: 1. You must make sure these network ports are open: TCP Ports: * 80, 443: HTTP/HTTPS * 389, 636: LDAP/LDAPS * 88, 464: kerberos UDP Ports: * 88, 464: kerberos * 123: ntp 2. You can now obtain a kerberos ticket using the command: 'kinit admin' This ticket will allow you to use the IPA tools (e.g., ipa user-add) and the web user interface. Be sure to back up the CA certificates stored in /root/cacert.p12 These files are required to create replicas. The password for these files is the Directory Manager password |
[3] | Get Kerberos tickets and change default shell. |
[root@dlp ~]# kinit admin Password for admin@SRV.WORLD: # IPA admin password [root@dlp ~]# klist Ticket cache: KEYRING:persistent:0:0 Default principal: admin@SRV.WORLD Valid starting Expires Service principal 07/21/2017 01:46:34 07/22/2017 01:46:31 krbtgt/SRV.WORLD@SRV.WORLD[root@dlp ~]# ipa config-mod --defaultshell=/bin/bash Maximum username length: 32 Home directory base: /home Default shell: /bin/bash Default users group: ipausers Default e-mail domain: srv.world Search time limit: 2 Search size limit: 100 User search fields: uid,givenname,sn,telephonenumber,ou,title Group search fields: cn,description Enable migration mode: FALSE Certificate Subject base: O=SRV.WORLD Password Expiration Notification (days): 4 Password plugin features: AllowNThash SELinux user map order: guest_u:s0$xguest_u:s0$user_u:s0$staff_ u:s0-s0:c0.c1023$unconfined_u:s0-s0:c0.c1023 Default SELinux user: unconfined_u:s0-s0:c0.c1023 Default PAC types: nfs:NONE, MS-PAC IPA masters: dlp.srv.world IPA CA servers: dlp.srv.world IPA NTP servers: dlp.srv.world IPA CA renewal master: dlp.srv.world |
[4] | If Firewalld is running, allow FreeIPA service. |
[root@dlp ~]# firewall-cmd --add-service={freeipa-ldap,freeipa-ldaps} --permanent success [root@dlp ~]# firewall-cmd --reload success |